Stored Procedures [dbo].[BAEFieldSectionInsert]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@SectionNamevarchar(128)128
SQL Script
create procedure [dbo].[BAEFieldSectionInsert] @SectionName as
varchar(128)
AS
    INSERT INTO FieldSection
    (
    SectionName    
    )
    VALUES
    (
    @SectionName
    );
    SELECT CAST(@@IDENTITY AS int) AS 'FieldSectionId'

GO
Uses